home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / core / IRepeater.as < prev    next >
Text File  |  2009-02-12  |  824b  |  34 lines

  1. package mx.core
  2. {
  3.    public interface IRepeater
  4.    {
  5.        
  6.       
  7.       function get container() : IContainer;
  8.       
  9.       function set startingIndex(param1:int) : void;
  10.       
  11.       function get startingIndex() : int;
  12.       
  13.       function set recycleChildren(param1:Boolean) : void;
  14.       
  15.       function get currentItem() : Object;
  16.       
  17.       function get count() : int;
  18.       
  19.       function get recycleChildren() : Boolean;
  20.       
  21.       function executeChildBindings() : void;
  22.       
  23.       function set dataProvider(param1:Object) : void;
  24.       
  25.       function initializeRepeater(param1:IContainer, param2:Boolean) : void;
  26.       
  27.       function get currentIndex() : int;
  28.       
  29.       function get dataProvider() : Object;
  30.       
  31.       function set count(param1:int) : void;
  32.    }
  33. }
  34.